@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,200;0,300;0,400;0,500;0,600;1,200;1,300;1,400;1,500&display=swap');

html {
    scroll-behavior: smooth;
}

body {
    background-color: #18130f;
    margin: 0;
    height: 100%;
    overflow-y: hidden;
    
}

.menu {
    background-color: #37343f;
    font-family: 'Montserrat', sans-serif;
    color: white;
    font-size: 1em;
    font-feature-settings: unset;


    position: fixed;
    top: 0;
    width: 100%;

    display: flex;
    flex-direction: column;
}

.menu:hover {
    cursor: default;
}

.menu_ {
    display: flex;
    flex-direction: row;
    justify-content: left;
}

/*
.menu_line {
    background-color: beige;
    height: 5px;
    width: 100%;

    border-bottom: 6px solid rgb(255, 255, 255);
}
*/

.nav {
    display: flex;
    flex-direction: row;
    justify-content: left;

    min-width: 100%

}

.item {
    background-color: #37343f;

    padding-left: 3em;
    padding-right: 3em;

/*
    margin-left: 1em;
    margin-right: 1em;
    */
}

.item a {
    color:white;
    text-decoration: none;
    
}

.item:hover {
    background-color: #322e3a;
    font-style: italic;

    cursor: pointer;

    transition: 0.1s;
}

.logo {
    margin-left: 1em;
    padding-right: 2em;
    
}

/* PAGE */

.page {
    margin-top: 50;

    display: flex;
    flex-direction: column;
}

.img img{
    width: 100%;
}
